home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Presentations
/
Presentations ’97
/
Sessions ’97
/
Multiplatform Code⁄Data Sharing
/
HelloBothWorlds
/
GE
/
LibHdr
/
sfxprocs.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-03-15
|
459 b
|
36 lines
|
[
TEXT/CWIE
]
/*
SFXProcs.h
Special effects for Graphic Elements
Copyright 1994 by Al Evans. All rights reserved.
6/9/94
*/
#ifndef SFXPROCS
#define SFXPROCS
#include "SFXCtrlr.h"
#ifdef __cplusplus
extern "C" {
#endif
//Horizontal wipe
GE_CALLBACK(void,SFXHWipe)(SFXCtrlrPtr controller);
//Vertical wipe
GE_CALLBACK(void,SFXVWipe)(SFXCtrlrPtr controller);
//Blink
GE_CALLBACK(void,SFXBlink)(SFXCtrlrPtr controller);
#ifdef __cplusplus
}
#endif
#endif